Python is crossplatform this means you can get it run in almost every where. Here is an installation guideline for the major OS.
For OS X and Ubuntu, you already get Python come along with the OS.
For Windows, you can download original installer file from the official page or using the conda package. Anyway, I normally use conda because some modules and package dependency that I'm using have been managed better.
Please, add the directory /Scripts into you system path.
set PATH=%PATH%;C:\Anaconda\Scripts
Next we need IPython in this tutorial. IPython is an interactive python it comes along with many useful feature, e.g. auto completetion and this notebook. To install Ipython, you may use the following commands;
pip install ipython
or
conda update conda
conda update ipython
IPython had Ipython Notebook but recently the project has been move to Jupyter, see more detail http://ipython.org/. IPython has many magic commad, plese check example below. Jupyter help magic commad
In [3]:
! python --version
In [4]:
! ping www.bbc.co.uk
In [5]:
%timeit range(1000)
All codes in this tutorial will be posted on Github. Please install Git or Github Desktop. https://desktop.github.com/
In [ ]: